home *** CD-ROM | disk | FTP | other *** search
/ Power CD / Power CD ATARI-Rechner Lieben.iso / APPS / PD / EULER / PROGS / HELP.E < prev    next >
Encoding:
Text File  |  1991-08-20  |  20.7 KB  |  744 lines

  1. .. Help texts.
  2.  
  3. comment
  4.  
  5.   *** Builtin functions:
  6. abs acos any arg argn args asin atan band bandmult bin cd ceil char
  7. charpoly chidis color complex conj contour cos count ctext cumprod
  8. cumsum diag diag dup epsilon error eval exp extrema fak fdis fft find
  9. flipx flipy floor format framecolor free hb holding holding ifft im
  10. index input interp interpret interpval invnormaldis invtdis iscomplex
  11. isreal jacobi lineinput log lu lusolve mark matrix max max mesh
  12. meshfactor min min mod mouse name nonzeros normal normaldis ones pi
  13. plot plot polyadd polycons polydiv polymult polyroot polysolve
  14. polytrans polytrunc polyval printf prod project random re round scale
  15. scaling searchfile searchfile setdiag setepsilon setkey setplot shrink
  16. sign sin size solid sort sqrt stringcompare style sum symmult tan tdis
  17. text textcolor textsize time triangles twosides view view wait window
  18. window wire wirecolor zeros 
  19.   *** Commands:
  20. break clear clg cls comment do dump else end endif exec for forget
  21. function global help hexdump hold if list load loop memorydump meta
  22. output quit remove repeat return shg type 
  23.   *** Your functions:
  24. dir window view matrix zeros ones random normal format diag text ctext
  25. splineval spline iterate map broyden gauss gauss10 romberg simpson
  26. secant bisect heun arcosh arsinh cosh sinh totalsum field polyfit hilb
  27. eigennewton eigen1 eigenremove eigenspace1 eigen eigenspace
  28. eigenvalues det image kernel fit inv id framedwire framedsolid
  29. scaleframe frame2 frame1 framexmym framexmyp framexpym framexpyp
  30. framez1 framez0 getframe plotwindow cplot mark plot ygrid xgrid
  31. printscale fplot xmark xplot ticks setplot shrinkwindow fullwindow
  32. textwidth textheight title write writeform polydif length equispace
  33. linspace shortformat longformat reset 
  34.  
  35. endcomment
  36.  
  37. function abs
  38. ## abs(x) returns the absolute value of x, |x|.
  39.     error("Illegal argument number!"),
  40. endfunction
  41.  
  42. function acos
  43. ## acos(x) returns the arcus cosine of x.
  44. ## Works for complex arguments also.
  45.     error("Illegal argument number!"),
  46. endfunction
  47.  
  48. function argn
  49. ## argn() returns the number of arguments of the active function.
  50.     error("Illegal argument number!"),
  51. endfunction
  52.  
  53. function args
  54. ## args(n) returns all arguments of a function from the n-th on.
  55.     error("Illegal argument number!"),
  56. endfunction
  57.  
  58. function asin
  59. ## asin(x) returns the arcus sine of x.
  60. ## Works for complex arguments also.
  61.     error("Illegal argument number!"),
  62. endfunction
  63.  
  64. function atan
  65. ## atan(x) returns the arcus tangens of x.
  66. ## Works for complex arguments also.
  67.     error("Illegal argument number!"),
  68. endfunction
  69.  
  70. function band
  71. ## band(A,c1,c2) sets all elements a(i,j) of A, for which
  72. ## c1 <= j-i <= c2 is not true, to 0.
  73.     error("Illegal argument number!"),
  74. endfunction
  75.  
  76. function bandmult
  77. ## bandmult(A,B) multiplies A with B, but is faster than A.B, if A or B 
  78. ## contain many zeros.
  79.     error("Illegal argument number!"),
  80. endfunction
  81.  
  82. function sin
  83. ## sin(x) returns the sine of x.
  84. ## Works for complex arguments also.
  85.     error("Illegal argument number!"),
  86. endfunction
  87.  
  88. function cos
  89. ## cos(x) returns the cosine of x.
  90. ## Works for complex arguments also.
  91.     error("Illegal argument number!"),
  92. endfunction
  93.  
  94. function tan
  95. ## tan(x) returns the tangens of x.
  96. ## Works for complex arguments also.
  97.     error("Illegal argument number!"),
  98. endfunction
  99.  
  100. function bin
  101. ## bin(n,m) returns the "n over m", i.e., n!/(m!*(n-m)!).
  102.     error("Illegal argument number!"),
  103. endfunction
  104.  
  105. function cd
  106. ## cd("") shows the active directory.
  107. ## cd("Path") sets the active directory to Path.
  108.     error("Illegal argument number!"),
  109. endfunction
  110.  
  111. function ceil
  112. ## ceil(x) returns the smallest integer n>=x.
  113.     error("Illegal argument number!"),
  114. endfunction
  115.  
  116. function floor
  117. ## floor(x) returns the greatest integer n<=x.
  118.     error("Illegal argument number!"),
  119. endfunction
  120.  
  121. function char
  122. ## char(x) returns a string with a single character with ASCII code x.
  123.     error("Illegal argument number!"),
  124. endfunction
  125.  
  126. function chidis
  127. ## chidis(x,n) returns the chi^2 distribution of x with n degrees of
  128. ## freedom, i.e., the probability, that the sum of n normal distributed
  129. ## squared random variables is smaller than x.
  130.     error("Illegal argument number!"),
  131. endfunction
  132.  
  133. function color
  134. ## color(n) sets the plotting color to n, returns old color.
  135.     error("Illegal argument number!"),
  136. endfunction
  137.  
  138. function complex
  139. ## complex(a) returns 1, if a is complex.
  140.     error("Illegal argument number!"),
  141. endfunction
  142.  
  143. function conj
  144. ## conj(a) returns the complex conjugate of a.
  145.     error("Illegal argument number!"),
  146. endfunction
  147.  
  148. function contour
  149. ## contour(A,v) plots a contour plot of A at heights equal to the
  150. ## elements of v.
  151.     error("Illegal argument number!"),
  152. endfunction
  153.  
  154. function count
  155. ## count(v,n) counts the elements of the vector v in the intervals
  156. ## [0,1),[1,2),...,[n-1,n]. Thus a 1xn vector is returned.
  157.     error("Illegal argument number!"),
  158. endfunction
  159.  
  160. function cumprod
  161. ## cumprod(A) returns a matrix of the same size as A, containing
  162. ## the cumulative product of the rows of A, i.e.,
  163. ## b(i,j) = prod(k=1 to j) a(i,k).
  164.     error("Illegal argument number!"),
  165. endfunction
  166.  
  167. function cumsum
  168. ## cumsum(A) returns a matrix of the same size as A, containing
  169. ## the cumulative sum of the rows of A, i.e.,
  170. ## b(i,j) = sum(k=1 to j) a(i,k).
  171.     error("Illegal argument number!"),
  172. endfunction
  173.  
  174. function dup
  175. ## dup(v,n) returns a Matrix with n rows, each equal to v.
  176.     error("Illegal argument number!"),
  177. endfunction
  178.  
  179. function epsilon
  180. ## epsilon() returns the internally used epsilon.
  181. ## epsilon()=1e-8 is a correct assignment.
  182. ## The variable Epsilon is set in "util" to epsilon().
  183.     error("Illegal argument number!"),
  184. endfunction
  185.  
  186. function pi
  187. ## pi() returns pi. The variable Pi is set in "util".
  188.     error("Illegal argument number!"),
  189. endfunction
  190.  
  191. function error
  192. ## error("s") aborts a function and prints the error text s.
  193.     error("Illegal argument number!"),
  194. endfunction
  195.  
  196. function eval
  197. ## eval("f",...) evaluates the function f at the points ...
  198. ## f must be a user defined function!
  199.     error("Illegal argument number!"),
  200. endfunction
  201.  
  202. function exp
  203. ## exp(x) returns the exponential of x, i.e., e^x.
  204.     error("Illegal argument number!"),
  205. endfunction
  206.  
  207. function framecolor
  208. ## framecolor(n) sets the frame color to n, returns old color.
  209.     error("Illegal argument number!"),
  210. endfunction
  211.  
  212. function log
  213. ## log(x) return the natural logarithm of x.
  214.     error("Illegal argument number!"),
  215. endfunction
  216.  
  217. function sqrt
  218. ## sqrt(x) return the square root of x.
  219.     error("Illegal argument number!"),
  220. endfunction
  221.  
  222. function extrema
  223. ## extrema(A) returns a matrix, containing the rows [min imin max imax].
  224. ## min and max are the minima and the maxima of the rows of A.
  225. ## imin and imax are the columns where these are obtained.
  226.     error("Illegal argument number!"),
  227. endfunction
  228.  
  229. function fak
  230. ## fak(n) returns n!.
  231.     error("Illegal argument number!"),
  232. endfunction
  233.  
  234. function fdis
  235. ## fdis(x,n,m) returns the F-distribution with n and m degrees of freedom.
  236.     error("Illegal argument number!"),
  237. endfunction
  238.  
  239. function fft
  240. ## fft(v) return the Fourier transform of v, obtained the fast way.
  241.     error("Illegal argument number!"),
  242. endfunction
  243.  
  244. function find
  245. ## find([v1,...,vn],x) finds the index i, such that v(i)<=x<v(i+1).
  246. ## Returns 0 if x<v(1) and n if x>v(n).
  247.     error("Illegal argument number!"),
  248. endfunction
  249.  
  250. function flipx
  251. ## flipx(A) flips the matrix such that the last column becomes the first.
  252.     error("Illegal argument nubmer!"),
  253. endfunction
  254.  
  255. function flipy
  256. ## flipy(A) flips the matrix such that the last row becomes the first.
  257.     error("Illegal argument nubmer!"),
  258. endfunction
  259.  
  260. function free
  261. ## free() returns the number of free bytes.
  262.     error("Illegal argument number!"),
  263. endfunction
  264.  
  265. function ifft
  266. ## ifft(v) returns the inverse Fourier transform of v.
  267.     error("Illegal argument number!"),
  268. endfunction
  269.  
  270. function im
  271. ## im(z) returns the imaginary part of z.
  272.     error("Illegal argument number!"),
  273. endfunction
  274.  
  275. function re
  276. ## re(z) returns the real part of z.
  277.     error("Illegal argument number!"),
  278. endfunction
  279.  
  280. function index
  281. ## index() returns the looping index in loops.
  282.     error("Illegal argument number!"),
  283. endfunction
  284.  
  285. function input
  286. ## input("s") prints s and a prompt, than evaluates the user input.
  287. ## The input can be any EULER expression, and may contain variables.
  288.     error("Illegal argument number!"),
  289. endfunction
  290.  
  291. function interp
  292. ## interp(x,y,n) computes the polynomial interpolation of degree n
  293. ## at the points x with values y. The polynomial is returned in
  294. ## the form of divided differences.
  295.     error("Illegal argument number!"),
  296. endfunction
  297.  
  298. function interpval
  299. ## interpval(x,d,t) evaluates the divided differences d at the points t.
  300. ## E.g., interpval(x,interp(x,y),x) returns y.
  301.     error("Illegal argument number!"),
  302. endfunction
  303.  
  304. function invnormaldis
  305. ## invnormaldis(y) returns the inverse normal distribution.
  306. ## See normaldis.
  307.     error("Illegal argument number!"),
  308. endfunction
  309.  
  310. function normaldis
  311. ## normaldis(x) returns the normal distribution at x; i.e., 
  312. ## the probability that a normal distributed unit random variable is
  313. ## less than x.
  314.     error("Illegal argument number!"),
  315. endfunction
  316.  
  317. function invtdis
  318. ## invtdis(x,n) returns the invers T-distribution with n degrees of
  319. ## freedom. See tdis.
  320.     error("Illegal argument number!"),
  321. endfunction
  322.  
  323. function tdis
  324. ## tdis(x,n) returns the T-distribution with n degrees of freedom,
  325. ## i.e. the probability, that a sample of n normal distributed 
  326. ## unit random variables scaled with mean value and standard deviation
  327. ## of the sample is less than x.
  328.     error("Illegal argument number!"),
  329. endfunction
  330.  
  331. function isreal
  332. ## isreal(x) return 1 if x is real.
  333.     error("Illegal argument number!"),
  334. endfunction
  335.  
  336. function iscomplex
  337. ## iscomplex(x) return 1 if x is not real.
  338.     error("Illegal argument number!"),
  339. endfunction
  340.  
  341. function jacobi
  342. ## jacobi(A) uses the Jacobi algorithm to determine the eigenvalues
  343. ## of A. A must be symmetric and real. Returns the vector of eigenvalues.
  344.     error("Illegal argument number!"),
  345. endfunction
  346.  
  347. function lu
  348. ## lu(A) returns a LU-decomposition of A obtained by the Gauss method.
  349. ## The result is {lu,ri,ci,det}, where det is the determinant.
  350. ## lu contains the lu decomposition in a single matrix.
  351. ## ri contains the indices of the rows of lu, since these may have
  352. ## been swept.
  353. ## ci contains 1 or 0, where 1 marks the linar undependent rows of lu.
  354. ## See lusolve also.
  355.     error("Illegal argument number!"),
  356. endfunction
  357.  
  358. function lusolve
  359. ## lusolve(LU,b) solves A.x=b, if LU is a LU-decomposition of A.
  360.     error("Illegal argument number!"),
  361. endfunction
  362.  
  363. function max
  364. ## max(A) contains a column vector with the maxima of the rows of A.
  365. ## max(x,y) returns the maximum of x and y.
  366.     error("Illegal argument number!"),
  367. endfunction
  368.  
  369. function min
  370. ## min(A) contains a column vector with the minima of the rows of A.
  371. ## max(x,y) returns the maximum of x and y.
  372.     error("Illegal argument number!"),
  373. endfunction
  374.  
  375. function mesh
  376. ## mesh(A) plots a 3-D plot of the the matrix A.
  377.     error("Illegal argument number!"),
  378. endfunction
  379.  
  380. function mod
  381. ## mod(n,m) returns n modulo m.
  382.     error("Illegal argument number!"),
  383. endfunction
  384.  
  385. function mouse
  386. ## mouse() switches to graphics and shows a mouse cursor.
  387. ## When the user clicks with the left mouse button the (x,y)-coordinates
  388. ## at this point according to the last plot are returned.
  389.     error("Illegal argument number!"),
  390. endfunction
  391.  
  392. function nonzeros
  393. ## nonzeros(v) contains a vector, containing the indices of the nonzero
  394. ## elements of v.
  395.     error("Illegal argument number!"),
  396. endfunction
  397.  
  398. function hb
  399. ## hb(A) computes the Hessenberg form of A. Returns {B,r} such that
  400. ## band(B(r,r),-1,n) is the Hessenberg form.
  401.     error("Illegal argument number!"),
  402. endfunction
  403.  
  404. function polyadd
  405. ## polyadd(p,q) adds two polynomials p and q.
  406.     error("Illegal argument number!"),
  407. endfunction
  408.  
  409. function polycons
  410. ## polycons([z1,z2,...]) computes a polynomials with zeros in zi.
  411.     error("Illegal argument number!"),
  412. endfunction
  413.  
  414. function polydiv
  415. ## polydiv(p,q) divides two polynomials with remainder. Returns
  416. ## {result,remainder}.
  417.     error("Illegal argument number!"),
  418. endfunction 
  419.  
  420. function polymult
  421. ## polymult(p,q) multiplies two polynomials.
  422.     error("Illegal argument number!"),
  423. endfunction
  424.  
  425. function polyroot
  426. ## polyroot(p,z) returns a zero of the polynomial p close to z.
  427.     error("Illegal argument number!"),
  428. endfunction
  429.  
  430. function polysolve
  431. ## polysolve(p) returns a vector with the zeros of p.
  432.     error("Illegal argument number!"),
  433. endfunction
  434.  
  435. function polytrans
  436. ## polytrans(x,d) transforms the divided differences form, return by
  437. ## interp to the usual polynomial form.
  438.     error("Illegal argument number!"),
  439. endfunction
  440.  
  441. function polytrunc
  442. ## polytrunc(p) truncates a polynomial to its smallest representation,
  443. ## i.e., its length is then the true degree plus 1.
  444.     error("Illegal argument number!"),
  445. endfunction
  446.  
  447. function polyval(p,x)
  448. ## polyval(p,x) returns the value of the polynomial p at x, i.e.
  449. ## p(1)+p(2)*x+...+p(n)*x^(n-1).
  450.     error("Illegal argument number!"),
  451. endfunction
  452.  
  453. function printf
  454. ## printf("format",value) returns a string, displaying the value
  455. ## with respect to the format in C syntax, e.g.,
  456. ## "Zahl = "|printf("%16.10f",x), outputs x in a nice way.
  457.     error("Illegal argument number!"),
  458. endfunction
  459.  
  460. function project
  461. ## project(x,y,z) returns {x1,y1}, which is the projection of the
  462. ## coordinates x,y,z to the screen coordinates.
  463.     error("Illegal argument number!"),
  464. endfunction
  465.  
  466. function prod
  467. ## prod(A) returns a vector containing the products of the rows of A.
  468.     error("Illegal argument number!"),
  469. endfunction
  470.  
  471. function sum
  472. ## sum(A) returns a vector containing the sums of the rows of A.
  473.     error("Illegal argument number!"),
  474. endfunction
  475.  
  476. function symmult
  477. ## symmult(A,B) multiplies A with B, and returns a symmetric result.
  478. ## I.e., only the upper half of A.B is computed.
  479.     error("Illegal argument number!"),
  480. endfunction
  481.  
  482. function round
  483. ## round(x,n) rounds x to n digits.
  484.     error("Illegal argument number!"),
  485. endfunction
  486.  
  487. function searchfile
  488. ## searchfile("Pattern") searches for a file, matching the pattern.
  489. ## searchfile() searches another file matching this pattern.
  490. ## Returns "", if there is no (more) such file.
  491.     error("Illegal argument number!"),
  492. endfunction
  493.  
  494. function scale
  495. ## scale(s) scales the gaphic output so that it appears in a
  496. ## horizontal/vertical ratio of about s. If s is 0, then the full
  497. ## screen is used.
  498.     error("Illegal argument number!"),
  499. endfunction
  500.  
  501. function setdiag
  502. ## setdiag(A,k,v) sets the k-th diagonal of A to v (see diag).
  503.     error("Illegal argument number!"),
  504. endfunction
  505.  
  506. function setkey
  507. ## setkey(n,"text") sets the function key n to produce "text".
  508.     error("Illegal argument number!"),
  509. endfunction
  510.  
  511. function shrink
  512. ## shrink(n) shrinks the memory by n bytes to make space for editors etc.
  513.     error("Illegal argument number!"),
  514. endfunction
  515.  
  516. function sign
  517. ## sign(x) returns the sign of x.
  518.     error("Illegal argument number!"),
  519. endfunction
  520.  
  521. function size
  522. ## size(A) returns the size of the matrix A in form [rows,columns].
  523. ## size(A,B,x,C,y,...) returns the size of A,B,C,.. which must agree.
  524.     error("Illegal argument number!"),
  525. endfunction
  526.  
  527. function solid
  528. ## solid(X,Y,Z) plots a solid three dimensional hyperplane with
  529. ## coordinates X,Y and Z. All these must be matrizes of the same
  530. ## dimensions.
  531.     error("Illegal argument number!"),
  532. endfunction
  533.  
  534. function sort
  535. ## sort(v) sorts the vector v. Returns {vs,i}, such that v(i)=vs;
  536.     error("Illegal argument number!"),
  537. endfunction
  538.  
  539. function style
  540. ## style("s") sets the style of plots and markers.
  541. ## For plots, there are ".", "-", "--", "i" (invisible).
  542. ## For markers, there are "mx", "m<>", "m.", "m+", "m[]", "m*".
  543. ## All other strings reset the default values.
  544.     error("Illegal argument number!"),
  545. endfunction
  546.  
  547. function stringcompare
  548. ## stringcompare("string1","string2") compares the two strings.
  549. ## Returns 0 if both are equal, 1 if string1 is bigger than string2,
  550. ## -1 else.
  551.     error("Illegal argument number!"),
  552. endfunction
  553.  
  554. function text
  555. ## text("string",[c,r]) displays the string at column c and row r
  556.     error("Illegal argument number!"),
  557. endfunction
  558.  
  559. function textcolor
  560. ## textcolor(n) sets the text color to n, returns old color.
  561.     error("Illegal argument number!"),
  562. endfunction
  563.  
  564. function textsize
  565. ## textsize() returns [width,height] of a single character in screen
  566. ## coordinates (0..1023,0..1023).
  567.     error("Illegal argument number!"),
  568. endfunction
  569.  
  570. function time
  571. ## time() returns a timer, running in seconds.
  572.     error("Illegal argument number!"),
  573. endfunction
  574.  
  575. function triangles
  576. ## triangles(flag) turns triangle meshing on and off.
  577.     error("Illegal argument number!"),
  578. endfunction
  579.  
  580. function twosides
  581. ## twosides(flag) turns shading in mesh and solid on and off.
  582.     error("Illegal argument number!"),
  583. endfunction
  584.  
  585. function wait
  586. ## wait(n) waits for n seconds, or until a key was pressed.
  587.     error("Illegal argument number!"),
  588. endfunction
  589.  
  590. function wire
  591. ## wire(X,Y,Z) works like solid, exept the plot is a wire frame.
  592.     error("Illegal argument number!"),
  593. endfunction
  594.  
  595. function wirecolor
  596. ## color(n) sets the wire color to n, returns old color.
  597.     error("Illegal argument number!"),
  598. endfunction
  599.  
  600. .. commands
  601.  
  602. function break
  603. ## break -> breaks a current loop, for, or repeat.
  604.     error("Illegal argument number!"),
  605. endfunction
  606.  
  607. function clg
  608. ## clg -> clears the graphics screen.
  609.     error("Illegal argument number!"),
  610. endfunction
  611.  
  612. function cls
  613. ## cls -> clears the text screen.
  614.     error("Illegal argument number!"),
  615. endfunction
  616.  
  617. function clear
  618. ## clear -> clears the local variables.
  619. ## clear variable -> clears the variable.
  620.     error("Illegal argument number!"),
  621. endfunction
  622.  
  623. function comment
  624. ## comment -> searches for a line starting with "endcomment".
  625.     error("Illegal argument number!"),
  626. endfunction
  627.  
  628. function do
  629. ## do function -> does the commands of the function without parameters.
  630. ## return returns from do.
  631.     error("Illegal argument number!"),
  632. endfunction
  633.  
  634. function dump
  635. ## dump "file" -> dumps screen output also to a file.
  636. ## dump -> stops dumping to file.
  637.     error("Illegal argument number!"),
  638. endfunction
  639.  
  640. function if
  641. ## if ..; ..; else, ..; endif; -> EULER's if construction.
  642.     error("Illegal argument number!"),
  643. endfunction
  644.  
  645. function global
  646. ## global x -> allows the global variable x to be accessed in a function.
  647.     error("Illegal argument number!"),
  648. endfunction
  649.  
  650. function exec
  651. ## exec "file.prg strings" -> executes file.prg (may also be file.tos)
  652. ## with parameters in strings.
  653.     error("Illegal argument number!"),
  654. endfunction
  655.  
  656. function forget
  657. ## forget function -> kills the function from memory.
  658.     error("Illegal argument number!"),
  659. endfunction
  660.  
  661. function for
  662. ## for i=0 to 10 step 2; ..; end; -> EULER's for loop.
  663.     error("Illegal argument number!"),
  664. endfunction
  665.  
  666. function repeat
  667. ## repeat; ..; end; -> eternal loop. Abort with break!
  668.     error("Illegal argument number!"),
  669. endfunction
  670.  
  671. function help
  672. ## help function -> prints the help lines of a function.
  673.     error("Illegal argument number!"),
  674. endfunction
  675.  
  676. function type
  677. ## type function -> types the lines of a function.
  678.     error("Illegal argument number!"),
  679. endfunction
  680.  
  681. function hexdump
  682. ## hexdump variable -> prints the hexadecimal content of a variable, i.e.
  683. ## the internal representation.
  684.     error("Illegal argument number!"),
  685. endfunction
  686.  
  687. function hold
  688. ## hold on -> holds the current plot.
  689. ## hold off -> the next plot will delete the current plot.
  690. ## hold -> hold on and notices old holding state; next hold restores it.
  691.     error("Illegal argument number!"),
  692. endfunction
  693.  
  694. function list
  695. ## list -> list the functions.
  696.     error("Illegal argument number!"),
  697. endfunction
  698.  
  699. function memorydump
  700. ## memorydump -> displays all internal objects and their sizes.
  701.     error("Illegal argument number!"),
  702. endfunction
  703.  
  704. function meta
  705. ## meta "filename" -> aktiviert ein Metafile.
  706. ## meta; -> deaktiviert das Metafile.
  707.     error("Illegal argument number!"),
  708. endfunction
  709.  
  710. function output
  711. ## output on -> switches output of results on.
  712. ## output off -> switches it off. Useful in connection with dump.
  713. ## output -> toggles.
  714.     error("Illegal argument number!"),
  715. endfunction
  716.  
  717. function  quit
  718. ## quit -> exits EULER (no verification!)
  719.     error("Illegal argument number!"),
  720. endfunction
  721.  
  722. function remove
  723. ## remove "file" -> kills the file from disk!
  724.     error("Illegal argument number!"),
  725. endfunction
  726.  
  727. function return
  728. ## return x -> exits a function with value x.
  729.     error("Illegal argument number!"),
  730. endfunction
  731.  
  732. function load
  733. ## load "filename" -> loads the commands in the file, as if they were
  734. ## input from the console.
  735.     error("Illegal argument number!"),
  736. endfunction
  737.  
  738. "Online help for builtin functions loading."
  739. "Enter"
  740. ">help sin"
  741. "for help on sin."
  742.  
  743.  
  744.